home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / x / gui / x3d.lha / x3d / Makefile.std < prev    next >
Encoding:
Makefile  |  1992-07-23  |  178 b   |  11 lines

  1. CFLAGS = -O
  2. LIBS   = -lX11 -lm
  3. INCS   = char.h constants.h gi.h macros.h types.h 
  4.   CC   = cc 
  5.  
  6. x3d: x3d.c $(INCS)
  7.     $(CC) $(CFLAGS) $(DEFS) -o x3d x3d.c $(LIBS) 
  8.  
  9. clean:
  10.     rm x3d
  11.